home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / dvivga9.zip / GETFNTDF.H < prev    next >
Text File  |  1988-05-30  |  844b  |  26 lines

  1. /* -*-C-*- getfntdf.h */
  2. /*-->getfntdf*/
  3. /**********************************************************************/
  4. /****************************** getfntdf ******************************/
  5. /**********************************************************************/
  6.  
  7. void
  8. getfntdf()
  9.  
  10. /***********************************************************************
  11. Read the font definitions as they are in the postamble of the DVI  file.
  12. Note that the font directory is not yet loaded.
  13. ***********************************************************************/
  14.  
  15. {
  16.     register BYTE    byte;
  17.  
  18.     while (((byte = (BYTE)nosignex(dvifp,(BYTE)1)) >= FNT_DEF1)
  19.     && (byte <= FNT_DEF4))
  20.     readfont ((INT32)nosignex(dvifp,(BYTE)(byte-FNT_DEF1+1)));
  21.     if (byte != POST_POST)
  22.     (void)fatal ("getfntdf():  POST_POST missing after fontdefs");
  23. }
  24.  
  25.  
  26.